.parentBox_1 {
  padding: 0px;
  height: 100%;
  background: #429eeb;
}
.btnBox_1 {
  text-align: center;
  color: #000;
  cursor: pointer;
  display: block;
  line-height: 45px;
  width: 160px;
  letter-spacing: 2px;
  font-size: 16px;
}
 
.btnBox_1 {
  border: 0 solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, 0.5);
  outline-offset: 0px;
  text-shadow: none;
  -webkit-transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}
 
.btnBox_1:hover {
  border: 1px solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5),
    0 0 20px rgba(255, 255, 255, 0.2);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  text-shadow: 1px 1px 2px #427388; 
}